home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 2 of 2).iso / cheats / eq_new / def / simcityc.bak < prev    next >
Text File  |  1995-03-11  |  4KB  |  170 lines

  1. // This file is (C) 1994 - Howard Young
  2.  
  3. DEFTITLE("SimCity  (Classic & Original)");
  4. DIR("C:\SIMCITY");
  5. PROGRAM("SIMCITY.EXE");
  6. UNIQUE("SIMCITY.CFG");
  7. SOURCEVERSION('100');
  8. DISKSOURCE;
  9. HOWARD;
  10. BACKGROUND('CITY.BGT');
  11.  
  12. TEXTCOLOR(White);
  13.  
  14. STRING FN;
  15. INT A,B,C,D,N,R,M,Y;
  16.  
  17. PROC FSEL;
  18.   C := 0;
  19.   N := GetFileList($(100),"*.CTY");
  20.   R := 100;
  21.  
  22.   IF (N>0)
  23.     FreeList('Please Choose A City You Wish To Work On:');
  24.       VAR(R);
  25.       AddList($(100),N);
  26.     EndFreeList;
  27.   ENDIF;
  28.  
  29.   IF (N=0)
  30.     MESSAGE('There Are No Cities Saved In Your SimCity',
  31.             'Directory.  Please Play SimCity and Save',
  32.             'Your City In The SimCity Directory.',
  33.             'Then Return And Use The Equalizer.');
  34.     Quit;
  35.   ENDIF;
  36.  
  37.   FN := $(R);
  38. ENDPROC; // FSEL
  39.  
  40. FUNC READALONG(INT POSITION);
  41.   INT _A;
  42.  
  43.   _A:=READNUM(POSITION,T_LONG);
  44.   _A:=Intel(_A);
  45.  
  46.   return(_A);
  47. ENDFUNC;  //  ReadALong
  48.  
  49. PROC WRITEALONG(INT POSITION,tVALUE);
  50.   tValue := Motorola(tValue);
  51.   WRITENUM(POSITION,T_LONG,tValue);
  52. ENDPROC;  // WRITEALONG
  53.  
  54. PROC LOADPAGE;
  55.   OPEN(FN);
  56.   A := ReadALong(3108);    // Funds
  57.   B := ReadALong(3024);    // Time
  58.   Y := B/48;               // Year
  59.   M := (B-(Y*48))/4;       // Month
  60.   Y := Y+1900;
  61. ENDPROC; // LOADPAGE
  62.  
  63. PROC SAVEPAGE;
  64.   WRITEALONG(3108,A);
  65.   B := (M*4)+((Y-1900)*48);
  66.   WRITEALONG(3024,B);
  67. ENDPROC;  // SAVEPAGE
  68.  
  69. FSEL;
  70. SETTITLE("SimCity Classic","("+FN+")");
  71.  
  72. PAGE(1);
  73.   LOADPAGE;
  74.   FIELDSTART(120);
  75.  
  76.   FIELD("FUNDS (Money)");
  77.     VAR(A);
  78.     RANGE(0,90000000);
  79.     INC(10);
  80.     HELP('001;FUNDS');
  81.   ENDFIELD;
  82.  
  83.   LIST("MONTH");
  84.     VAR(M);
  85.     ASSIGN(0,'JANUARY','FEBRUARY','MARCH','APRIL','MAY','JUNE','JULY');
  86.     ASSIGN(7,'AUGUST ','SEPTEMBER','OCTOBER','NOVEMBER','DECEMBER');
  87.     Help('001;TIME');
  88.   ENDLIST;
  89.  
  90.   FIELD("YEAR");
  91.     VAR(Y);
  92.     RANGE(1900,3000);
  93.     Help('001;TIME');
  94.   ENDFIELD;
  95.  
  96.   PAGEEXIT(SAVEPAGE);
  97. ENDPAGE;   // END OF PAGE(1)
  98.  
  99.  
  100. {----------------------------------------------------------------------------}
  101. // Dialogs
  102. {----------------------------------------------------------------------------}
  103.  
  104. DIALOG('001');
  105. ^T"FUNDS"
  106. ^E^UFUNDS^U
  107.  
  108. This is the amount of money you have to
  109. build and maintain your city.
  110.  
  111. You can increase the amount of money to make
  112. SimCity a little easier to play or you can
  113. make your game harder by decreasing the
  114. amount of money that you have.
  115. ^T"TIME"
  116. ^E^UMONTH/YEAR^U
  117.  
  118. This is the time of the year.  You can modify
  119. the time so that you can make your deadlines,
  120. or so that you can repeat a good year.
  121. ENDDIALOG;
  122.  
  123. ABOUT
  124. ^4^*^USimCity Classic^U
  125.  
  126. Game Title:       SimCity, SimCity Classic
  127. Company:          Maxis
  128. Game Type:        Strategy Simulation
  129. Medium:           CD-ROM and Disk
  130. Ram Nessasary:    640k
  131. Hard Drive Space: 4 Megabytes
  132. Machine Speed:    Any
  133. Add on Disks:     Assorted Graphics and Scenarios
  134. Sound Support:    Adlib, Sound Blaster, PC Speaker
  135. Year of Release:  1989
  136. Designer:         Will Wright
  137. Distributer:      Maxis
  138.  
  139. DEFinition Features:
  140.  
  141. - Change the Month
  142. - Change the year between 1900 and 3000
  143. - Maximum money
  144.  
  145. In this game you get to be the ultimate
  146. mayor of your own city or of a major city
  147. like Tokyo or San Francisco.
  148.  
  149. You can control everything from taxes to
  150. the building practices for the entire city.
  151. However, beware that the people of your city
  152. can also get mad if you don't do a good job.
  153.  
  154. This means keeping a good fire department,
  155. good city transit system, electric system,
  156. and controling pollution and crime.
  157.  
  158. This game may be a classic, but it still has
  159. ^UCLASS^U and is definitly worth playing!
  160.  
  161. ^4Software Copyright 1989, 1991, 1992, 1993
  162. ^4Sim-Business and Will Wright.
  163. ^4All rights reserved worldwide.
  164.  
  165.  
  166.               ^P"YSSHY.PCC"
  167. ENDABOUT;
  168.  
  169. {----------------------------------------------------------------------------}
  170.